home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Views
/
View Options
/
DrawsSpontaneously.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
469b
|
33 lines
// DrawsSpontaneously.h
#ifndef DrawsSpontaneously_h
#define DrawsSpontaneously_h
#ifndef ListOf_h
#include "ListOf.h"
#endif
#ifndef View_h
#include "View.h"
#endif
class Pane;
class DrawsSpontaneously: virtual public View
{
friend class Pane;
friend class CanvasLoopBase;
private:
mutable ListOf< Pane > panes;
protected:
DrawsSpontaneously() {}
~DrawsSpontaneously();
void Invalidate() const;
void Redraw();
void Update();
};
#endif